Skip to main content
POST
/
fleet
/
drivers
/
voice-sign-in
/
resolve-assignment
[beta] Voice sign-in: resolve driver and create assignment
curl --request POST \
  --url https://api.samsara.com/fleet/drivers/voice-sign-in/resolve-assignment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "driverName": "Jane Doe",
  "vehicleId": "281474978683353"
}
'
{
  "data": {
    "driverId": "1234567",
    "driverName": "Jane Doe"
  }
}

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for resolving a driver assignment by driver name and vehicle ID.

driverName
string
required

The full name of the driver to resolve.

Example:

"Jane Doe"

vehicleId
string
required

The vehicle ID. This can be either a unique Samsara ID or an external ID for the vehicle.

Example:

"281474978683353"

Response

Created response.

data
object
required

Response body containing the resolved driver information.